NotNull

Alias for a special check constraint that makes sure the column is never null. This is checked the same time as all the other check constraints. The name of the constraint is NotNull in the error messages if this is ever violated.

alias NotNull = CheckConstraint!(function bool
(
auto ref a
)
, "NotNull")

Meta